mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

- rename podlibre to adaures - rename castopod-host to castopod - simplify README and redirect to docs site - move INSTALL and UPDATE docs - add new gitlabci pipeline to deploy docs - upgrade node to v16 in Dockerfile
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' => 'Navigation',
|
||
'first' => 'Première',
|
||
'previous' => 'Précédent',
|
||
'next' => 'Suivant',
|
||
'last' => 'Dernière',
|
||
'older' => 'Plus ancien',
|
||
'newer' => 'Plus récent',
|
||
'invalidTemplate' => '{0} n’est pas un modèle valide.',
|
||
'invalidPaginationGroup' => '{0} n’est pas un groupe valide.',
|
||
];
|