mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
22 lines
531 B
PHP
22 lines
531 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'pageNavigation' => 'Navigácia stránky',
|
|
'first' => 'Prvá',
|
|
'previous' => 'Predošlá',
|
|
'next' => 'Ďalšia',
|
|
'last' => 'Posledná',
|
|
'older' => 'Staršia',
|
|
'newer' => 'Novšia',
|
|
'invalidTemplate' => '{0} is not a valid Pager template.',
|
|
'invalidPaginationGroup' => '{0} is not a valid Pagination group.',
|
|
];
|