summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2011-03-06 18:22:32 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2011-03-06 18:22:32 +0100
commitc0ed28b17baa41a8d69d0cdfd952144d453ea17d (patch)
treee2f950bb564b5f8b344517fa15b53432b0dd7759 /templates/pages/constlist.mako
parent7ab81cd8ccebd0865f9a3498d88d72129c695a45 (diff)
downloadkosten-c0ed28b17baa41a8d69d0cdfd952144d453ea17d.tar.gz
kosten-c0ed28b17baa41a8d69d0cdfd952144d453ea17d.tar.bz2
kosten-c0ed28b17baa41a8d69d0cdfd952144d453ea17d.zip
Change to german in output
Diffstat (limited to '')
-rw-r--r--templates/pages/constlist.mako8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/pages/constlist.mako b/templates/pages/constlist.mako
index 12f6f85..02ff5aa 100644
--- a/templates/pages/constlist.mako
+++ b/templates/pages/constlist.mako
@@ -1,15 +1,15 @@
<%inherit file="/page.mako" />
-<p><a href=${"/const/add" | url}>Add new</a></p>
+<p><a href=${"/const/add" | url}>Neuen Eintrag hinzufügen</a></p>
-<h2>Current</h2>
+<h2>Aktuell</h2>
<ul class="arrow">
% for c in current:
<li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense})</a></li>
% endfor
</ul>
-<h2>Outdated</h2>
+<h2>Veraltet</h2>
<ul class="arrow">
% for c in old:
<li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense})</a></li>
@@ -17,5 +17,5 @@
</ul>
<%def name="heading()">
- Constant Expenses
+ Konstante Kosten
</%def>