aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPercy Perez-Pinedo2009-01-02 23:36:49 -0800
committerPercy Perez-Pinedo2009-01-02 23:36:49 -0800
commit74763c3eb7e8debdf502697dfa28b0122cc9a628 (patch)
treec951463dd5b3c42f4b1179c19c86a9fbc93da4bc
parent22fde8255f935dbadcd958ee04fc3f0a94a64704 (diff)
downloaddjango-debug-toolbar-74763c3eb7e8debdf502697dfa28b0122cc9a628.tar.bz2
trans fue incorporado a logger.html
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/headers.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/logger.html11
2 files changed, 7 insertions, 6 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/headers.html b/debug_toolbar/templates/debug_toolbar/panels/headers.html
index 0a1578d..00b28e2 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/logger.html b/debug_toolbar/templates/debug_toolbar/panels/logger.html
index c079065..112cc7d 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/logger.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/logger.html
@@ -1,12 +1,13 @@
+{% load i18n %}
<h3>Log Messages</h3>
{% if records %}
<table>
<thead>
<tr>
- <th>Level</th>
- <th>Time</th>
- <th>Message</th>
- <th>Location</th>
+ <th>{% trans "Level" %}</th>
+ <th>{% trans "Time" %}</th>
+ <th>{% trans "Message" %}</th>
+ <th>{% trans "Location" %}</th>
</tr>
</thead>
<tbody>
@@ -21,6 +22,6 @@
</tbody>
</table>
{% else %}
- <p>No messages logged.</p>
+ <p>{% trans "No messages logged" %}.</p>
{% endif %}