mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-13 09:45:47 +00:00
28 lines
750 B
PHP
28 lines
750 B
PHP
![]() |
<?php
|
|||
|
|
|||
|
declare(strict_types=1);
|
|||
|
|
|||
|
/**
|
|||
|
* @copyright 2020 Podlibre
|
|||
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|||
|
* @link https://castopod.org/
|
|||
|
*/
|
|||
|
|
|||
|
return [
|
|||
|
'form' => [
|
|||
|
'episode_message_placeholder' => 'Saisissez un commentaire...',
|
|||
|
'reply_to_placeholder' => 'Répondre à @{actorUsername}',
|
|||
|
'submit' => 'Envoyer !',
|
|||
|
'submit_reply' => 'Répondre',
|
|||
|
],
|
|||
|
'like' => 'J’aime',
|
|||
|
'reply' => 'Répondre',
|
|||
|
'replies' => '{numberOfReplies, plural,
|
|||
|
one {# réponse}
|
|||
|
other {# réponses}
|
|||
|
}',
|
|||
|
'block_actor' => 'Bloquer l’utilisateur @{actorUsername}',
|
|||
|
'block_domain' => 'Bloquer le domaine @{actorDomain}',
|
|||
|
'delete' => 'Supprimer le commentaire',
|
|||
|
];
|