aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorJannis Leidel2012-03-31 22:09:23 +0200
committerJannis Leidel2012-03-31 22:09:35 +0200
commit69cc4e6b93a79ed1d0958fe5b1135119c0cff2ff (patch)
tree8ae1e20219c7c6de5a71196a9091dedddb26a1d9 /debug_toolbar/templates
parent545dbabb091da7c68c8d754ac70efd435416e703 (diff)
downloaddjango-debug-toolbar-69cc4e6b93a79ed1d0958fe5b1135119c0cff2ff.tar.bz2
Marked a few more strings for translation.
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html
index 9b282ca..96c3072 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html
@@ -56,12 +56,12 @@
<td colspan="2"></td>
<td colspan="4">
<div class="djSQLDetailsDiv">
- <p><strong>Connection:</strong> {{ query.alias }}</p>
+ <p><strong>{% trans "Connection:" %}</strong> {{ query.alias }}</p>
{% if query.iso_level %}
- <p><strong>Isolation Level:</strong> {{ query.iso_level }}</p>
+ <p><strong>{% trans "Isolation level:" %}</strong> {{ query.iso_level }}</p>
{% endif %}
{% if query.trans_status %}
- <p><strong>Transaction Status:</strong> {{ query.trans_status }}</p>
+ <p><strong>{% trans "Transaction status:" %}</strong> {{ query.trans_status }}</p>
{% endif %}
{% if query.stacktrace %}
<pre class="stack">{{ query.stacktrace }}</pre>
@@ -75,7 +75,7 @@
</tr>
{% endfor %}
</table>
- <p><strong>{{ query.template_info.name|default:"(unknown)" }}</strong></p>
+ <p><strong>{{ query.template_info.name|default:_("(unknown)") }}</strong></p>
{% endif %}
</div>
</td>
@@ -84,5 +84,5 @@
</tbody>
</table>
{% else %}
- <p>No SQL queries were recorded during this request.</p>
+ <p>{% trans "No SQL queries were recorded during this request." %}</p>
{% endif %}