2015-05-14 04:31:54 -05:00
|
|
|
<?php
|
2018-03-29 12:00:21 -05:00
|
|
|
declare(strict_types=1);
|
2018-04-28 08:26:45 -05:00
|
|
|
|
2016-03-13 11:19:09 -05:00
|
|
|
/**
|
|
|
|
* pagination.php
|
2017-12-11 12:42:57 -06:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III.
|
2016-03-13 11:19:09 -05:00
|
|
|
*
|
2017-12-11 12:42:57 -06:00
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2016-10-04 23:52:15 -05:00
|
|
|
*
|
2017-12-11 12:42:57 -06:00
|
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2017-12-18 22:24:14 -06:00
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-13 11:19:09 -05:00
|
|
|
*/
|
2017-12-19 12:35:54 -06:00
|
|
|
|
2015-05-14 04:31:54 -05:00
|
|
|
return [
|
|
|
|
'previous' => '« Vorige',
|
|
|
|
'next' => 'Volgende »',
|
2017-09-03 03:40:27 -05:00
|
|
|
];
|