mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
31 lines
731 B
PHP
31 lines
731 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 [
|
|
'yes' => 'Si',
|
|
'no' => 'No',
|
|
'cancel' => 'Annulla',
|
|
'optional' => 'Facoltativo',
|
|
'close' => 'Chiudi',
|
|
'home' => 'Home',
|
|
'explicit' => 'Esplicito',
|
|
'powered_by' => 'Powered by {castopod}',
|
|
'go_back' => 'Torna indietro',
|
|
'play_episode_button' => [
|
|
'play' => 'Riproduci',
|
|
'playing' => 'In riproduzione',
|
|
],
|
|
'read_more' => 'Continua a leggere',
|
|
'read_less' => 'Leggere meno',
|
|
'see_more' => 'Mostra altro',
|
|
'see_less' => 'Mostra meno',
|
|
'legal_notice' => 'Note legali',
|
|
];
|