aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPercy Perez-Pinedo2009-08-21 15:36:00 -0700
committerPercy Perez-Pinedo2009-08-21 15:36:00 -0700
commitb5087075c1354b1512bb25a38e7f7c0afd1067d0 (patch)
tree59e57acfbe1ce739a3b2268f649f2fc899acf264
parent8fa547a2a34086455b4af9e327906b6f96b12b24 (diff)
downloaddjango-debug-toolbar-b5087075c1354b1512bb25a38e7f7c0afd1067d0.tar.bz2
spanish version of the debug toolbar templates is mostly done'
-rw-r--r--debug_toolbar/locale/es/LC_MESSAGES/django.mobin1318 -> 1413 bytes
-rw-r--r--debug_toolbar/locale/es/LC_MESSAGES/django.po17
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql.html6
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/templates.html3
4 files changed, 19 insertions, 7 deletions
diff --git a/debug_toolbar/locale/es/LC_MESSAGES/django.mo b/debug_toolbar/locale/es/LC_MESSAGES/django.mo
index 1c8f042..a09808b 100644
--- a/debug_toolbar/locale/es/LC_MESSAGES/django.mo
+++ b/debug_toolbar/locale/es/LC_MESSAGES/django.mo
Binary files differ
diff --git a/debug_toolbar/locale/es/LC_MESSAGES/django.po b/debug_toolbar/locale/es/LC_MESSAGES/django.po
index a40979d..2d4c199 100644
--- a/debug_toolbar/locale/es/LC_MESSAGES/django.po
+++ b/debug_toolbar/locale/es/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-21 15:06-0700\n"
+"POT-Creation-Date: 2009-08-21 15:26-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -48,6 +48,7 @@ msgstr ""
#: templates/debug_toolbar/panels/cache.html:39
#: templates/debug_toolbar/panels/logger.html:8
+#: templates/debug_toolbar/panels/sql.html:6
#: templates/debug_toolbar/panels/sql_explain.html:7
#: templates/debug_toolbar/panels/sql_profile.html:7
#: templates/debug_toolbar/panels/sql_select.html:7
@@ -136,6 +137,14 @@ msgstr "Acción"
msgid "Line"
msgstr "Línea"
+#: templates/debug_toolbar/panels/sql.html:32
+msgid "Method"
+msgstr "Método"
+
+#: templates/debug_toolbar/panels/sql.html:33
+msgid "File"
+msgstr "Archivo"
+
#: templates/debug_toolbar/panels/sql_explain.html:2
#: templates/debug_toolbar/panels/sql_profile.html:2
#: templates/debug_toolbar/panels/sql_select.html:2
@@ -153,8 +162,10 @@ msgstr "SQL Ejecutado"
msgid "Empty set"
msgstr "Set Vacío"
+#: templates/debug_toolbar/panels/templates.html:14
+msgid "Template"
+msgstr "Plantilla"
+
#: templates/debug_toolbar/panels/timer.html:10
msgid "Resource"
msgstr "Recurso"
-
-
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html
index 4bb7c9a..cac2e47 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html
@@ -3,7 +3,7 @@
<table>
<thead>
<tr>
- <th>Time&nbsp;(ms)</th>
+ <th>{% trans "Time" %}&nbsp;(ms)</th>
<th>{% trans "Action" %}</th>
<th>Stacktrace</th>
<th>Query</th>
@@ -29,8 +29,8 @@
<table>
<tr>
<th>{% trans "Line" %}</th>
- <th>Method</th>
- <th>File</th>
+ <th>{% trans "Method" %}</th>
+ <th>{% trans "File" %}</th>
</tr>
{% for file, line, method in query.stacktrace %}
<tr>
diff --git a/debug_toolbar/templates/debug_toolbar/panels/templates.html b/debug_toolbar/templates/debug_toolbar/panels/templates.html
index 622321f..194e477 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/templates.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/templates.html
@@ -1,3 +1,4 @@
+{% load i18n %}
<h4>Template path{{ template_dirs|length|pluralize }}</h4>
<div class="boxed">
{% if template_dirs %}
@@ -11,7 +12,7 @@
{% endif %}
</div>
-<h4>Template{{ templates|length|pluralize }}</h4>
+<h4>{% trans "Template" %}{{ templates|length|pluralize }}</h4>
<div class="boxed">
{% if templates %}
<dl>