diff options
| author | Percy Perez-Pinedo | 2009-08-21 13:30:24 -0700 |
|---|---|---|
| committer | Percy Perez-Pinedo | 2009-08-21 13:30:24 -0700 |
| commit | e0a81fd78aa2a6e5096a8b207484fa19cc5c034f (patch) | |
| tree | 336fe3d1def5d5236fdfc04f0a4b52a4d2121627 | |
| parent | b7629d5768295131c35d613dbb16d9a070474c77 (diff) | |
| download | django-debug-toolbar-e0a81fd78aa2a6e5096a8b207484fa19cc5c034f.tar.bz2 | |
testing some changes
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | debug_toolbar/locale/es/LC_MESSAGES/django.mo | bin | 1052 -> 1081 bytes | |||
| -rw-r--r-- | debug_toolbar/locale/es/LC_MESSAGES/django.po | 4 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/base.html | 2 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/signals.html | 2 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql.html | 2 |
6 files changed, 9 insertions, 4 deletions
@@ -1,2 +1,3 @@ *.pyc - +*.DS_Store +*~ diff --git a/debug_toolbar/locale/es/LC_MESSAGES/django.mo b/debug_toolbar/locale/es/LC_MESSAGES/django.mo Binary files differindex 295c214..d8d3edd 100644 --- a/debug_toolbar/locale/es/LC_MESSAGES/django.mo +++ b/debug_toolbar/locale/es/LC_MESSAGES/django.mo diff --git a/debug_toolbar/locale/es/LC_MESSAGES/django.po b/debug_toolbar/locale/es/LC_MESSAGES/django.po index 07c8d30..ad12522 100644 --- a/debug_toolbar/locale/es/LC_MESSAGES/django.po +++ b/debug_toolbar/locale/es/LC_MESSAGES/django.po @@ -18,6 +18,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +msgid "Hide" +msgstr "Ocultar" + + #: templates/debug_toolbar/base.html:30 msgid "Close" msgstr "Cerrar" diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index 66d126e..748001d 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -20,7 +20,7 @@ <div style="display: none;" id="djDebugToolbar"> <ul id="djDebugPanelList"> {% if panels %} - <li><a id="djHideToolBarButton" href="#" title="Hide Toolbar">« Hide</a></li> + <li><a id="djHideToolBarButton" href="#" title="Hide Toolbar">« {% trans "Hide" %}</a></li> {% else %} <li id="djDebugButton">DEBUG</li> {% endif %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/signals.html b/debug_toolbar/templates/debug_toolbar/panels/signals.html index e9a189e..bd2ebc2 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/signals.html +++ b/debug_toolbar/templates/debug_toolbar/panels/signals.html @@ -2,7 +2,7 @@ <table> <thead> <tr> - <th>Signal</th> + <th>{% trans "Signal" %}</th> <th>Providing Args</th> <th>Receivers</th> </tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 99ce611..c07c566 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -4,7 +4,7 @@ <thead> <tr> <th>Time (ms)</th> - <th>Action</th> + <th>{% trans "Action" %}</th> <th>Stacktrace</th> <th>Query</th> </tr> |
