From bd297209d37048c0165ce6bfdd847af90ce4fc28 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Wed, 14 Dec 2011 15:49:32 +0100 Subject: [PATCH] =?utf8?q?Paginating:=20Schriftz=C3=BCge=20"N=C3=A4chster"?= =?utf8?q?=20und=20"Vorheriger"?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- locale/de/all | 2 ++ templates/webpages/common/paginate.html | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/locale/de/all b/locale/de/all index bc1371e45..fa3720784 100644 --- a/locale/de/all +++ b/locale/de/all @@ -2196,6 +2196,7 @@ $self->{texts} = { 'month' => 'Monatliche Abgabe', 'monthly' => 'monatlich', 'new Window' => 'neues Fenster', + 'next' => 'Nächste', 'no' => 'nein', 'no bestbefore' => 'keine Mindesthaltbarkeit', 'no chargenumber' => 'keine Chargennummer', @@ -2219,6 +2220,7 @@ $self->{texts} = { 'pos_eur' => 'E/ÜR', 'pos_ustva' => 'UStVA', 'posted!' => 'gebucht', + 'prev' => 'Vorherige', 'print' => 'drucken', 'proforma' => 'Proforma', 'project_list' => 'projektliste', diff --git a/templates/webpages/common/paginate.html b/templates/webpages/common/paginate.html index 3724f8e8b..a476fa09f 100644 --- a/templates/webpages/common/paginate.html +++ b/templates/webpages/common/paginate.html @@ -1,8 +1,9 @@ +[%- USE T8 %] [%- IF pages.max > 1 %] -[%- IF pages.cur > 1 %]« [% ELSE %]« [% END %] +[%- IF pages.cur > 1 %]« [% 'prev' | $T8 %] [% ELSE %]« [% END %] [%- FOR p = pages.common %] [%- NEXT UNLESS p.visible %] [%- IF p.active %][% p.page %] [% ELSE %][% p.page %] [%- END %] [%- END %] -[%- IF pages.cur < pages.max %]»[% ELSE %]»[%- END %] +[%- IF pages.cur < pages.max %][% 'next' | $T8 %] »[% ELSE %]»[%- END %] [%- END %] -- 2.20.1