From 5151e5ff87ab56352df8d6979c14542aa18b2538 Mon Sep 17 00:00:00 2001
From: Percy Perez-Pinedo
Date: Fri, 2 Jan 2009 23:19:45 -0800
Subject: working on translating the django toolbar into Spanish. Translating
panel template: cache.html
---
.../templates/debug_toolbar/panels/cache.html | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
(limited to 'debug_toolbar')
diff --git a/debug_toolbar/templates/debug_toolbar/panels/cache.html b/debug_toolbar/templates/debug_toolbar/panels/cache.html
index 3142783..7667740 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/cache.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/cache.html
@@ -1,3 +1,4 @@
+{% load i18n %}
Cache Usage
@@ -11,13 +12,13 @@
- | Total Calls |
+ {% trans "Total Calls" %} |
{{ cache_calls }} |
- Total Time |
+ {% trans "Total Time" %} |
{{ cache_time }}ms |
- Hits |
+ {% trans "Hits" %} |
{{ cache.hits }} |
- Misses |
+ {% trans "Misses" %} |
{{ cache.misses }} |
@@ -32,14 +33,14 @@
{% if cache.calls %}
-Breakdown
+{% trans "Breakdown" %}
- | Time (ms) |
- Type |
- Parameters |
- Function |
+ {% trans "Time (ms)" %} |
+ {% trans "Type" %} |
+ {% trans "Parameters" %} |
+ {% trans "Function" %} |
--
cgit v1.2.3