Skip to content
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.

Commit

Permalink
Lang constant for pagination title added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Mees committed Sep 12, 2011
1 parent 43ab095 commit 4fec1b4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions UTF-8/lang_de.inc.php
Expand Up @@ -5,6 +5,7 @@
@define('TWOK11_NOWEBFONT', 'Keinen Webfont einbinden');
// Sprachkonstanten
@define('TWOK11_NAV_TITLE', 'Navigation');
@define('TWOK11_PAG_TITLE', 'Pagination');
@define('TWOK11_PLACE_NAME', 'z.B. John Doe');
@define('TWOK11_PLACE_MAIL', 'z.B. mail@example.org');
@define('TWOK11_PLACE_URL', 'z.B. http://example.org');
Expand Down
1 change: 1 addition & 0 deletions UTF-8/lang_en.inc.php
Expand Up @@ -5,6 +5,7 @@
@define('TWOK11_NOWEBFONT', 'Include no webfont');
// Lang constants
@define('TWOK11_NAV_TITLE', 'Navigation');
@define('TWOK11_PAG_TITLE', 'Pagination');
@define('TWOK11_PLACE_NAME', 'i.e. John Doe');
@define('TWOK11_PLACE_MAIL', 'i.e. mail@example.org');
@define('TWOK11_PLACE_URL', 'i.e. http://example.org');
Expand Down
3 changes: 2 additions & 1 deletion entries.tpl
@@ -1,4 +1,5 @@
{serendipity_hookPlugin hook="entries_header" addData="$entry_id"}
{assign var="pagtitle" value=$CONST.TWOK11_PAG_TITLE}
{foreach from=$entries item="dategroup"}
{foreach from=$dategroup.entries item="entry"}
<article id="post_{$entry.id}" class="serendipity_entry{if $dategroup.is_sticky} sticky{/if}" role="article">
Expand Down Expand Up @@ -127,7 +128,7 @@
{/foreach}
{if $footer_info or $footer_prev_page or $footer_next_page}
<nav class="serendipity_pagination" role="navigation">
<h2 class="visuallyhidden">Pagination</h2>
<h2 class="visuallyhidden">{$pagtitle}</h2>

<ul class="clearfix">
{if $footer_info}
Expand Down
1 change: 1 addition & 0 deletions lang_de.inc.php
Expand Up @@ -5,6 +5,7 @@
@define('TWOK11_NOWEBFONT', 'Keinen Webfont einbinden');
// Sprachkonstanten
@define('TWOK11_NAV_TITLE', 'Navigation');
@define('TWOK11_PAG_TITLE', 'Pagination');
@define('TWOK11_PLACE_NAME', 'z.B. John Doe');
@define('TWOK11_PLACE_MAIL', 'z.B. mail@example.org');
@define('TWOK11_PLACE_URL', 'z.B. http://example.org');
Expand Down
1 change: 1 addition & 0 deletions lang_en.inc.php
Expand Up @@ -5,6 +5,7 @@
@define('TWOK11_NOWEBFONT', 'Include no webfont');
// Lang constants
@define('TWOK11_NAV_TITLE', 'Navigation');
@define('TWOK11_PAG_TITLE', 'Pagination');
@define('TWOK11_PLACE_NAME', 'i.e. John Doe');
@define('TWOK11_PLACE_MAIL', 'i.e. mail@example.org');
@define('TWOK11_PLACE_URL', 'i.e. http://example.org');
Expand Down

0 comments on commit 4fec1b4

Please sign in to comment.