aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 %}